-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump globby from 6.1.0 to 14.0.2 #823
base: develop
Are you sure you want to change the base?
Conversation
00f8a74
to
e2d2db2
Compare
Bumps [globby](https://github.com/sindresorhus/globby) from 6.1.0 to 14.0.2. - [Release notes](https://github.com/sindresorhus/globby/releases) - [Commits](sindresorhus/globby@v6.1.0...v14.0.2) --- updated-dependencies: - dependency-name: globby dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
9688ef2
to
c3e7af0
Compare
I've pushed a commit here that removes 'globby' altogether and instead uses the Node 'glob' module to the same effect. @AlexVelezLl or @MisRob could you please give this a closer look to be sure that I've not missed anything? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am curious if we are using a node built-in glob
package, or if glob
is resolving because other libraries requires this:
When I clicked on the package in vscode to see what file was it referencing, it led me to this glob package installed in the node_modules.
const output = {}; | ||
|
||
for (const filename of simpleFiles.filter(notTest)) { | ||
for (const filename of Array.from(simpleFiles).filter(notTest)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think here we wouldnt need to use Array.from again, since in the definition of simpleFiles
we already use Array.from right?
Bumps globby from 6.1.0 to 14.0.2.
Release notes
Sourced from globby's releases.
... (truncated)
Commits
c000568
14.0.2f600250
Fix typesb0d7330
14.0.1a85078e
Meta tweaksaf5d139
FixexpandDirectories.extension
option (#263)3a28601
Fix read permission error on ignore files search (#259)bd76374
14.0.03bd00a6
AddconvertPathToPattern()
method2c06ae5
Require Node.js 1876c70ab
13.2.2Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)